[[00 - Python Map | Python]] scripts can often require command-line input variables. Here are a few tools that are often used. - [`argparse`](https://docs.python.org/3/library/argparse.html) : this is the standard Python package. - [`docopt`](http://docopt.org/) : another commonly used tool. - [`click`](https://github.com/pallets/click) : an enhancement (imho) of `docopt` --- #### Related #python